home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ MSI Options 1.xpl < prev    next >
Text File  |  2003-11-19  |  2KB  |  66 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="3"
  4. "UIPATH"="System\Software Installation\Windows Installer"
  5. "NAME"="Options - User"
  6. "VERSION"="1.02"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Enable searching for alternative sources"
  9. "TEXT 2"="Enable browsing for source files"
  10. "TEXT 3"="Enable rollback feature"
  11. "DESCRIPTION 1"="Internet Explorer 5, Office 2000 and Windows 2000 use a new standard for installing applications: the Windows Installer (aka MSI). "
  12. "DESCRIPTION 2"="Be sure not to deactivate option #3: If an installation fails and this option is deactivated, MSI has no chance to restore the system to the previous state."
  13. "DESCRIPTION 3"="If you are sure that you don't need this feature, deactivating this option will preserve a lot of HD space during an installation."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18. "COMMENT 2"="Thanks to Eric Watton [41331922@3web.net] for the deactivated fix!"
  19.  
  20.  
  21. sPathUsr="HKCU\Software\Policies\Microsoft\Windows\Installer\"
  22.  
  23. sV2="TransformsAtSource" 'DW - usr
  24. sV3="DisableBrowse" ' DW - usr
  25. sV4="DisableRollback" 'DW - usr
  26.  
  27. Sub Plugin_Initialize 
  28.  i=RegReadValue(sPathUsr & sV2)
  29.  if i=1 then setuielement 1,true
  30.  
  31.  i=RegReadValue(sPathUsr & sV3)
  32.  if i=0 or IsEmpty(i) then setuielement 2,true
  33.  
  34.  i=RegReadValue(sPathUsr & sV4)
  35.  if i=0 or IsEmpty(i) then setuielement 3,true
  36. End Sub
  37.  
  38. Sub Plugin_CheckData(ElementIndex)
  39. End Sub
  40.  
  41. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  42.  b=GetUIElement(1)
  43.  if b=true then
  44.     Call RegWriteValue(sPathUsr & sV2,1,2)
  45.  else
  46.     Call RegWriteValue(sPathUsr & sV2,0,2)
  47.  end if
  48.  
  49.  b=GetUIElement(2)
  50.  if b=false then
  51.     Call RegWriteValue(sPathUsr & sV3,1,2)
  52.  else
  53.     Call RegWriteValue(sPathUsr & sV3,0,2)
  54.  end if
  55.  
  56.  b=GetUIElement(3)
  57.  if b=false then
  58.     Call RegWriteValue(sPathUsr & sV4,1,2)
  59.  else
  60.     Call RegWriteValue(sPathUsr & sV4,0,2)
  61.  end if
  62. End Sub
  63.  
  64. Sub Plugin_Terminate 
  65. End Sub
  66.